From: Roland McGrath Date: Wed, 7 Apr 1993 20:58:20 +0000 (+0000) Subject: (compile-internal): Initialize the process-mark. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96582 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0e8ec8d0cc8e4145616d83f499c8a5b9ea95807b;p=emacs.git (compile-internal): Initialize the process-mark. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index bf860e6c38f..22d60916ac7 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -322,6 +322,7 @@ Returns the compilation buffer created." command))) (set-process-sentinel proc 'compilation-sentinel) (set-process-filter proc 'compilation-filter) + (set-marker (process-mark proc) (point) outbuf) (setq compilation-in-progress (cons proc compilation-in-progress)))) ;; Make it so the next C-x ` will use this buffer. (setq compilation-last-buffer outbuf)))